home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Me-Mz / Mike's Externals.cpt / Mike's Externals / card_6182.txt < prev    next >
Text File  |  1990-02-22  |  2KB  |  71 lines

  1. -- card: 6182 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2764
  5. -- name: 
  6.  
  7.  
  8. -- part 2 (button)
  9. -- low flags: 00
  10. -- high flags: A003
  11. -- rect: left=248 top=60 right=84 bottom=330
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: TryMe
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   put bkgnd field "examples" into t
  23.   printtext t,"London",18,"o","true","true","c"
  24. end mouseUp
  25.  
  26.  
  27.  
  28. -- part contents for background part 17
  29. ----- text -----
  30. PrintText (HardCopy)
  31.  
  32. -- part contents for background part 18
  33. ----- text -----
  34. Gary Bond
  35.  
  36. -- part contents for background part 19
  37. ----- text -----
  38. XCMD
  39.  
  40. -- part contents for background part 20
  41. ----- text -----
  42. PrintText "Text" [,"FontName",FontSize,"FontStyle",
  43. "PageNumbers","Dialog" ,"Justification"]
  44.  
  45. -- part contents for background part 21
  46. ----- text -----
  47. Ever wanted to print the contents of a field?  Well, now you can with the xcmd.  The only required parameter is the text to be printed.  Optional parameters are:
  48.  
  49. Fontname:  The name of the font you want to use.  The default is Monaco.
  50.  
  51. Fontsize:  The size of the font.  The default is 9 point.
  52.  
  53. Fontstyle:  The style of the font.  Choose from "plain", "bold","italic","outline", 
  54. "underline", "shadow", "condensed", or "extended".  (Or just "p","b","i","o","u","s","c" or "e").  The default is plain.
  55.  
  56. PageNumbers: Use "PageNumbers" or "True"  (or "P" or "T") to print the page number on the paper. The default is "False".
  57.  
  58. Dialog:  Use "Dialog", "D", "True" or "T" for the Printing dialog. The default is false.
  59.  
  60. Justification:  Use "Left" for left justification, "Right" for right, and "Center" for centered text.  (Or "L","R" or "C").  The default is "Left".
  61.  
  62. Gary Bond originally wrote this as HardCopy, but I have made a few minor changes (for the better), so I am calling it PrintText.  
  63.  
  64.  
  65. -- part contents for background part 23
  66. ----- text -----
  67. put bkgnd field 1 into t
  68.  
  69. printfield t
  70. printfield t,"Chicago",12,bold,true,Dialog
  71. printfield t,"Monaco",9,underline